home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / 4dostool / 4error.zip / ERROR.BTM next >
Text File  |  1992-10-20  |  445b  |  23 lines

  1. @echo off
  2. goto Start
  3. :Help
  4. text
  5.  
  6.  ERROR -- Explanations of DOS error levels.
  7.  
  8.  Usage: ERROR <error_value>     for explanation for the error_value
  9.         ERROR /?                for this screen, or
  10.         ERROR                   for list of all standard DOS errors.
  11. endtext
  12. return
  13.  
  14. :Start
  15. iff "%1" eq "" then
  16.  list %@search[error.db]
  17. elseiff "%1" eq "/?" then
  18.  gosub help
  19.  quit
  20. else
  21.  find " %1 " %@search[error.db]
  22. endiff
  23.